home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / AMISL083.ARJ / TSRS.DOC < prev    next >
Text File  |  1992-05-02  |  4KB  |  140 lines

  1. Alternate Multiplex Interrupt Specification Sample Programs
  2. Public Domain 1992 Ralf Brown
  3. Version 0.83
  4. LastEdit: 5/2/92
  5.  
  6. ------------------------------------------------------------------------
  7.  
  8. AMITSRS
  9.     list currently-installed TSRs using the alternate multiplex interrupt
  10.  
  11. Usage:    AMITSRS
  12.         list manufacturer, name, and description of each TSR
  13.  
  14.     AMITSRS <anything>
  15.         verbose listing; adds a second line with TSR version
  16.         and private entry point (if any)
  17.  
  18. ------------------------------------------------------------------------
  19.  
  20. FASTMOUS
  21.     convert slow (on some systems) mouse hardware reset call into
  22.     mouse software reset call.
  23.  
  24. Usage:    FASTMOUS
  25.         install FASTMOUS
  26.  
  27.     FASTMOUS R
  28.         remove FASTMOUS from memory
  29.  
  30. Resident Size: 128 bytes
  31.  
  32. ------------------------------------------------------------------------
  33.  
  34. NOLPT
  35.     turn a parallel port into a bit bucket by making it appear to
  36.     always be ready for output and ignoring any output calls.
  37.  
  38. Usage:    NOLPT n
  39.         install NOLPT on LPTn
  40.  
  41.     NOLPT nU
  42.         remove (uninstall) NOLPT from LPTn
  43.  
  44. Resident Size: 192/240 bytes (high/low)
  45.  
  46. ------------------------------------------------------------------------
  47.  
  48. NOTE
  49.     popup one-line note taker
  50.  
  51. Usage:    NOTE -Ifile
  52.         install NOTE, using <file> as the notepad
  53.  
  54.     NOTE -R
  55.         remove NOTE from memory
  56.  
  57. Note:    NOTE keeps the notepad file open as long as it remains
  58.     resident, in order to reduce the size of the resident code and
  59.     data.  The file is open in write-only deny-none mode, which
  60.     allows other programs using the correct sharing modes (such as
  61.     LIST.COM and 4DOS) to access the notepad.  Unfortunately,
  62.     COMMAND.COM does *NOT* use any sharing modes, even in version
  63.     5.0--two major releases after sharing modes were introduced.
  64.     Thus you will get a sharing violation if you attempt to TYPE
  65.     or COPY the notepad using COMMAND.COM while NOTE is loaded.
  66.  
  67. Resident Size: 1856 bytes
  68.  
  69. ------------------------------------------------------------------------
  70.  
  71. POPUP
  72.     request that a specified TSR pop itself up if it supports that
  73.     operation
  74.  
  75. Usage:    POPUP <tsrname>
  76.  
  77.     POPUP <manufacturer> <tsrname>
  78.  
  79. Note:    both <manufacturer> and <tsrname> may be abbreviated; if more
  80.     than one TSR matches, the matching TSRs will be listed.
  81.  
  82. ------------------------------------------------------------------------
  83.  
  84. REMOVE
  85.     remove one or more TSRs from memory
  86.  
  87. Usage:    REMOVE <tsrname>
  88.  
  89.     REMOVE <manufacturer> <tsrname>
  90.  
  91. Note:    both <manufacturer> and <tsrname> may be abbreviated; if more
  92.     than one TSR matches, you will be prompted whether to remove
  93.     all matching TSRs.
  94.  
  95. ------------------------------------------------------------------------
  96.  
  97. SWITCHAR
  98.     provide switch-character support which was removed from MSDOS 5.0
  99.  
  100. Usage:    SWITCHAR I
  101.         install
  102.  
  103.     SWITCHAR R
  104.         remove from memory
  105.  
  106.     SWITCHAR D
  107.         disable switchar calls
  108.  
  109.     SWITCHAR E
  110.         enable switchar calls
  111.  
  112.     SWITCHAR <x>
  113.         set switch character to <x>
  114.  
  115. Resident Size: 224/288 bytes (high/low)
  116.  
  117. ------------------------------------------------------------------------
  118.  
  119. VGABLANK
  120.     VGA-specific screen blanker
  121.  
  122. Usage:    VGABLANK n
  123.         install, setting blanking interval to <n> minutes
  124.         or if already installed, change blanking time
  125.  
  126.     VGABLANK R
  127.         remove from memory
  128.  
  129. Resident Size: 208 bytes
  130.  
  131. ------------------------------------------------------------------------
  132.  
  133.     Ralf Brown
  134.     School of Computer Science
  135.     Carnegie Mellon University
  136.     Pittsburgh, PA 15213-3890
  137.  
  138.     Ralf Brown 1:129/26.1
  139.     ralf+@cs.cmu.edu
  140.